home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Frameworks / Argus Frameworks 2.1 / Argus Libraries 2.1 / FnError.r < prev    next >
Text File  |  1996-01-04  |  1KB  |  57 lines

  1. /**********************************************************************
  2.  
  3.     FnError.r
  4.  
  5. ***********************************************************************/
  6.  
  7. #include <Types.r>
  8.  
  9. resource 'DITL' (900, "Error Alert") {
  10.     {    /* array DITLarray: 2 elements */
  11.         /* [1] */
  12.         {59, 288, 79, 348},
  13.         Button {
  14.             enabled,
  15.             "OK"
  16.         },
  17.         /* [2] */
  18.         {10, 75, 54, 343},
  19.         StaticText {
  20.             enabled,
  21.             "^0^1^2^3"
  22.         }
  23.     }
  24. };
  25.  
  26. resource 'ALRT' (900, "Error Alert") {
  27.     {94, 80, 183, 438},
  28.     900,
  29.     {    /* array: 4 elements */
  30.         /* [1] */
  31.         OK, visible, sound1,
  32.         /* [2] */
  33.         OK, visible, sound1,
  34.         /* [3] */
  35.         OK, visible, sound1,
  36.         /* [4] */
  37.         OK, visible, sound1,
  38.     },
  39. };
  40.  
  41. resource 'STR ' (900, "General Error") {
  42.     "Sorry, but a fatal error just occured!"
  43. };
  44.  
  45. resource 'STR ' (901, "System Error") {
  46.     "Sorry, you must have System 7 or later to run this application."
  47. };
  48.  
  49. resource 'STR ' (902, "Resource Error") {
  50.     "Error: Resource could not be loaded."
  51. };
  52.  
  53. resource 'STR ' (903, "Can't Handle AppleEvent Error") {
  54.     "Error: Could not handle AppleEvent."
  55. };
  56.  
  57. // End of File